100 |
How can I change the group's caption
Dim oExplorerBar as P Dim var_Group as P oExplorerBar = topparent:CONTROL_ACTIVEX1.activex var_Group = oExplorerBar.Groups.Add("Group 1") var_Group.AddItem("Item 1") var_Group.AddItem("Item 2") var_Group.AddItem("Item 3") var_Group.Caption = "new caption" var_Group.Expanded = .t. |
99 |
How can I get the number or count of items in a group
Dim oExplorerBar as P Dim var_Group as P oExplorerBar = topparent:CONTROL_ACTIVEX1.activex var_Group = oExplorerBar.Groups.Add("Group 1") var_Group.AddItem("Item 1") var_Group.AddItem("Item 2") var_Group.AddItem("Item 3") var_Group.AddItem(var_Group.Count) var_Group.Expanded = .t. |
98 |
How can I access an item in a group
Dim oExplorerBar as P Dim var_Group as P Dim var_Item as local oExplorerBar = topparent:CONTROL_ACTIVEX1.activex var_Group = oExplorerBar.Groups.Add("Group 1") var_Group.AddItem("Item 1") var_Group.AddItem("Item 2") var_Group.AddItem("Item 3") ' var_Group.Item(1).Bold = .t. var_Item = var_Group.Item(1) oExplorerBar.TemplateDef = "dim var_Item" oExplorerBar.TemplateDef = var_Item oExplorerBar.Template = "var_Item.Bold = True" var_Group.Expanded = .t. |
97 |
How can I remove all items, from a group
Dim oExplorerBar as P Dim var_Group as P oExplorerBar = topparent:CONTROL_ACTIVEX1.activex var_Group = oExplorerBar.Groups.Add("Group 1") var_Group.AddItem("Item 1") var_Group.AddItem("Item 2") var_Group.AddItem("Item 3") var_Group.Clear() var_Group.Expanded = .t. |
96 |
How can I remove an item, from a group
Dim oExplorerBar as P Dim var_Group as P oExplorerBar = topparent:CONTROL_ACTIVEX1.activex var_Group = oExplorerBar.Groups.Add("Group 1") var_Group.AddItem("Item 1") var_Group.AddItem("Item 2") var_Group.AddItem("Item 3") var_Group.RemoveItem(1) var_Group.Expanded = .t. |
95 |
How can I add a new item to a group
Dim oExplorerBar as P Dim var_Group as P oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=") var_Group = oExplorerBar.Groups.Add("Group 1") var_Group.AddItem("Item 1",1) var_Group.Expanded = .t. |
94 |
How can I add a new item to a group
Dim oExplorerBar as P oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.Groups.Add("Group 1").AddItem("Item 1") |
93 |
How can I add a new item to a group
Dim oExplorerBar as P Dim var_Group as P oExplorerBar = topparent:CONTROL_ACTIVEX1.activex var_Group = oExplorerBar.Groups.Add("Group 1") var_Group.AddItem("Item 1") var_Group.Expanded = .t. |
92 |
How can I get the groups as they are listed
Dim oExplorerBar as P Dim var_Groups as P oExplorerBar = topparent:CONTROL_ACTIVEX1.activex var_Groups = oExplorerBar.Groups var_Groups.Add("Group 1") var_Groups.Add("Group 2") var_Groups.Add("Group 3") |
91 |
How can I access a group by position
Dim oExplorerBar as P Dim var_Group as local Dim var_Groups as P oExplorerBar = topparent:CONTROL_ACTIVEX1.activex var_Groups = oExplorerBar.Groups var_Groups.Add("Group 1") var_Groups.Add("Group 2") var_Groups.Add("Group 3") ' var_Groups.ItemByPos(1).Bold = .t. var_Group = var_Groups.ItemByPos(1) oExplorerBar.TemplateDef = "dim var_Group" oExplorerBar.TemplateDef = var_Group oExplorerBar.Template = "var_Group.Bold = True" |
90 |
How can I access a group
Dim oExplorerBar as P Dim var_Group as local Dim var_Groups as P oExplorerBar = topparent:CONTROL_ACTIVEX1.activex var_Groups = oExplorerBar.Groups var_Groups.Add("Group 1") var_Groups.Add("Group 2") var_Groups.Add("Group 3") ' var_Groups.Item(1).Bold = .t. var_Group = var_Groups.Item(1) oExplorerBar.TemplateDef = "dim var_Group" oExplorerBar.TemplateDef = var_Group oExplorerBar.Template = "var_Group.Bold = True" |
89 |
How can I clear the groups collection
Dim oExplorerBar as P Dim var_Groups as P oExplorerBar = topparent:CONTROL_ACTIVEX1.activex var_Groups = oExplorerBar.Groups var_Groups.Add("Group 1") var_Groups.Add("Group 2") var_Groups.Add("Group 3") var_Groups.Clear() |
88 |
How can I remove a group
Dim oExplorerBar as P Dim var_Groups as P oExplorerBar = topparent:CONTROL_ACTIVEX1.activex var_Groups = oExplorerBar.Groups var_Groups.Add("Group 1") var_Groups.Add("Group 2") var_Groups.Add("Group 3") var_Groups.Remove(1) |
87 |
How can I add a group
Dim oExplorerBar as P Dim var_Group as P oExplorerBar = topparent:CONTROL_ACTIVEX1.activex var_Group = oExplorerBar.Groups.Add("Group 1") var_Group.AddItem("Item 1") var_Group.AddItem("Item 2") var_Group.Expanded = .t. |
86 |
How do I count the number of groups
Dim oExplorerBar as P Dim var_Groups as P oExplorerBar = topparent:CONTROL_ACTIVEX1.activex var_Groups = oExplorerBar.Groups var_Groups.Add("Group 1") var_Groups.Add("Group 2") var_Groups.Add("Group 3") var_Groups.Add(var_Groups.Count) |
85 |
How can I display pictures with a custom size, instead icons, in the shortcut bar
Dim oExplorerBar as P Dim var_Group as local Dim var_Group1 as local Dim var_Group2 as local Dim var_Group3 as local oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.ShowShortcutBar = .t. ' oExplorerBar.Groups.Add("Group 1").Shortcut = "Set 1" var_Group = oExplorerBar.Groups.Add("Group 1") oExplorerBar.TemplateDef = "dim var_Group" oExplorerBar.TemplateDef = var_Group oExplorerBar.Template = "var_Group.Shortcut = `Set 1`" ' oExplorerBar.Groups.Add("Group 2").Shortcut = "Set 1" var_Group1 = oExplorerBar.Groups.Add("Group 2") oExplorerBar.TemplateDef = "dim var_Group1" oExplorerBar.TemplateDef = var_Group1 oExplorerBar.Template = "var_Group1.Shortcut = `Set 1`" ' oExplorerBar.Groups.Add("Group 3").Shortcut = "Set 2" var_Group2 = oExplorerBar.Groups.Add("Group 3") oExplorerBar.TemplateDef = "dim var_Group2" oExplorerBar.TemplateDef = var_Group2 oExplorerBar.Template = "var_Group2.Shortcut = `Set 2`" ' oExplorerBar.Groups.Add("Group 4").Shortcut = "Set 2" var_Group3 = oExplorerBar.Groups.Add("Group 4") oExplorerBar.TemplateDef = "dim var_Group3" oExplorerBar.TemplateDef = var_Group3 oExplorerBar.Template = "var_Group3.Shortcut = `Set 2`" oExplorerBar.Template = "ShortcutPicture(`Set 1`) = Me.ExecuteTemplate(`loadpicture(``c:\exontrol\images\zipdisk.gif``)`)" // oExplorerBar.ShortcutPicture("Set 1") = oExplorerBar.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)") oExplorerBar.Template = "ShortcutPicture(`Set 2`) = Me.ExecuteTemplate(`loadpicture(``c:\exontrol\images\auction.gif``)`)" // oExplorerBar.ShortcutPicture("Set 2") = oExplorerBar.ExecuteTemplate("loadpicture(`c:\exontrol\images\auction.gif`)") oExplorerBar.ShortcutPictureWidth = 32 oExplorerBar.ShortcutPictureHeight = 32 oExplorerBar.ShortcutBarHeight = 32 |
84 |
How can I display pictures instead icons, in the shortcut bar
Dim oExplorerBar as P Dim var_Group as local Dim var_Group1 as local Dim var_Group2 as local Dim var_Group3 as local oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.ShowShortcutBar = .t. ' oExplorerBar.Groups.Add("Group 1").Shortcut = "Set 1" var_Group = oExplorerBar.Groups.Add("Group 1") oExplorerBar.TemplateDef = "dim var_Group" oExplorerBar.TemplateDef = var_Group oExplorerBar.Template = "var_Group.Shortcut = `Set 1`" ' oExplorerBar.Groups.Add("Group 2").Shortcut = "Set 1" var_Group1 = oExplorerBar.Groups.Add("Group 2") oExplorerBar.TemplateDef = "dim var_Group1" oExplorerBar.TemplateDef = var_Group1 oExplorerBar.Template = "var_Group1.Shortcut = `Set 1`" ' oExplorerBar.Groups.Add("Group 3").Shortcut = "Set 2" var_Group2 = oExplorerBar.Groups.Add("Group 3") oExplorerBar.TemplateDef = "dim var_Group2" oExplorerBar.TemplateDef = var_Group2 oExplorerBar.Template = "var_Group2.Shortcut = `Set 2`" ' oExplorerBar.Groups.Add("Group 4").Shortcut = "Set 2" var_Group3 = oExplorerBar.Groups.Add("Group 4") oExplorerBar.TemplateDef = "dim var_Group3" oExplorerBar.TemplateDef = var_Group3 oExplorerBar.Template = "var_Group3.Shortcut = `Set 2`" oExplorerBar.Template = "ShortcutPicture(`Set 1`) = Me.ExecuteTemplate(`loadpicture(``c:\exontrol\images\zipdisk.gif``)`)" // oExplorerBar.ShortcutPicture("Set 1") = oExplorerBar.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)") oExplorerBar.Template = "ShortcutPicture(`Set 2`) = Me.ExecuteTemplate(`loadpicture(``c:\exontrol\images\auction.gif``)`)" // oExplorerBar.ShortcutPicture("Set 2") = oExplorerBar.ExecuteTemplate("loadpicture(`c:\exontrol\images\auction.gif`)") oExplorerBar.ShortcutBarHeight = 44 |
83 |
How can I change the visual appearance of the shortcut bar, using EBN files
Dim oExplorerBar as P Dim var_Group as local Dim var_Group1 as local Dim var_Group2 as local Dim var_Group3 as local oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") oExplorerBar.VisualAppearance.Add(2,"c:\exontrol\images\pushed.ebn") oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=") oExplorerBar.ShowShortcutBar = .t. ' oExplorerBar.Groups.Add("Group 1").Shortcut = "Set <img>1</img>" var_Group = oExplorerBar.Groups.Add("Group 1") oExplorerBar.TemplateDef = "dim var_Group" oExplorerBar.TemplateDef = var_Group oExplorerBar.Template = "var_Group.Shortcut = `Set <img>1</img>`" ' oExplorerBar.Groups.Add("Group 2").Shortcut = "Set <img>1</img>" var_Group1 = oExplorerBar.Groups.Add("Group 2") oExplorerBar.TemplateDef = "dim var_Group1" oExplorerBar.TemplateDef = var_Group1 oExplorerBar.Template = "var_Group1.Shortcut = `Set <img>1</img>`" ' oExplorerBar.Groups.Add("Group 3").Shortcut = "Set <img>2</img>" var_Group2 = oExplorerBar.Groups.Add("Group 3") oExplorerBar.TemplateDef = "dim var_Group2" oExplorerBar.TemplateDef = var_Group2 oExplorerBar.Template = "var_Group2.Shortcut = `Set <img>2</img>`" ' oExplorerBar.Groups.Add("Group 4").Shortcut = "Set <img>2</img>" var_Group3 = oExplorerBar.Groups.Add("Group 4") oExplorerBar.TemplateDef = "dim var_Group3" oExplorerBar.TemplateDef = var_Group3 oExplorerBar.Template = "var_Group3.Shortcut = `Set <img>2</img>`" oExplorerBar.ShortcutResizeBackColor = 33554432 oExplorerBar.ShortcutBarSelCaptionBackColor = 16777216 oExplorerBar.ShortcutBarSelBackColor = 16777216 oExplorerBar.BackColorGroup = 16777216 |
82 |
How can I change the visual appearance of the separator between groups and the shortcut bar, using your EBN files
Dim oExplorerBar as P Dim var_Group as local Dim var_Group1 as local Dim var_Group2 as local Dim var_Group3 as local oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=") oExplorerBar.ShowShortcutBar = .t. ' oExplorerBar.Groups.Add("Group 1").Shortcut = "Set <img>1</img>" var_Group = oExplorerBar.Groups.Add("Group 1") oExplorerBar.TemplateDef = "dim var_Group" oExplorerBar.TemplateDef = var_Group oExplorerBar.Template = "var_Group.Shortcut = `Set <img>1</img>`" ' oExplorerBar.Groups.Add("Group 2").Shortcut = "Set <img>1</img>" var_Group1 = oExplorerBar.Groups.Add("Group 2") oExplorerBar.TemplateDef = "dim var_Group1" oExplorerBar.TemplateDef = var_Group1 oExplorerBar.Template = "var_Group1.Shortcut = `Set <img>1</img>`" ' oExplorerBar.Groups.Add("Group 3").Shortcut = "Set <img>2</img>" var_Group2 = oExplorerBar.Groups.Add("Group 3") oExplorerBar.TemplateDef = "dim var_Group2" oExplorerBar.TemplateDef = var_Group2 oExplorerBar.Template = "var_Group2.Shortcut = `Set <img>2</img>`" ' oExplorerBar.Groups.Add("Group 4").Shortcut = "Set <img>2</img>" var_Group3 = oExplorerBar.Groups.Add("Group 4") oExplorerBar.TemplateDef = "dim var_Group3" oExplorerBar.TemplateDef = var_Group3 oExplorerBar.Template = "var_Group3.Shortcut = `Set <img>2</img>`" oExplorerBar.ShortcutResizeBackColor = 16777216 oExplorerBar.ExpandShortcutCount = 1 |
81 |
How do I change the background color of the separator between groups and the shortcut bar
Dim oExplorerBar as P Dim var_Group as local Dim var_Group1 as local Dim var_Group2 as local Dim var_Group3 as local oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=") oExplorerBar.ShowShortcutBar = .t. ' oExplorerBar.Groups.Add("Group 1").Shortcut = "Set <img>1</img>" var_Group = oExplorerBar.Groups.Add("Group 1") oExplorerBar.TemplateDef = "dim var_Group" oExplorerBar.TemplateDef = var_Group oExplorerBar.Template = "var_Group.Shortcut = `Set <img>1</img>`" ' oExplorerBar.Groups.Add("Group 2").Shortcut = "Set <img>1</img>" var_Group1 = oExplorerBar.Groups.Add("Group 2") oExplorerBar.TemplateDef = "dim var_Group1" oExplorerBar.TemplateDef = var_Group1 oExplorerBar.Template = "var_Group1.Shortcut = `Set <img>1</img>`" ' oExplorerBar.Groups.Add("Group 3").Shortcut = "Set <img>2</img>" var_Group2 = oExplorerBar.Groups.Add("Group 3") oExplorerBar.TemplateDef = "dim var_Group2" oExplorerBar.TemplateDef = var_Group2 oExplorerBar.Template = "var_Group2.Shortcut = `Set <img>2</img>`" ' oExplorerBar.Groups.Add("Group 4").Shortcut = "Set <img>2</img>" var_Group3 = oExplorerBar.Groups.Add("Group 4") oExplorerBar.TemplateDef = "dim var_Group3" oExplorerBar.TemplateDef = var_Group3 oExplorerBar.Template = "var_Group3.Shortcut = `Set <img>2</img>`" oExplorerBar.ShortcutResizeBackColor = 255 oExplorerBar.ExpandShortcutCount = 1 |
80 |
How can I change the visual appearance of the shortcut bar, using your EBN files
Dim oExplorerBar as P Dim var_Group as local Dim var_Group1 as local Dim var_Group2 as local Dim var_Group3 as local oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=") oExplorerBar.ShowShortcutBar = .t. ' oExplorerBar.Groups.Add("Group 1").Shortcut = "Set <img>1</img>" var_Group = oExplorerBar.Groups.Add("Group 1") oExplorerBar.TemplateDef = "dim var_Group" oExplorerBar.TemplateDef = var_Group oExplorerBar.Template = "var_Group.Shortcut = `Set <img>1</img>`" ' oExplorerBar.Groups.Add("Group 2").Shortcut = "Set <img>1</img>" var_Group1 = oExplorerBar.Groups.Add("Group 2") oExplorerBar.TemplateDef = "dim var_Group1" oExplorerBar.TemplateDef = var_Group1 oExplorerBar.Template = "var_Group1.Shortcut = `Set <img>1</img>`" ' oExplorerBar.Groups.Add("Group 3").Shortcut = "Set <img>2</img>" var_Group2 = oExplorerBar.Groups.Add("Group 3") oExplorerBar.TemplateDef = "dim var_Group2" oExplorerBar.TemplateDef = var_Group2 oExplorerBar.Template = "var_Group2.Shortcut = `Set <img>2</img>`" ' oExplorerBar.Groups.Add("Group 4").Shortcut = "Set <img>2</img>" var_Group3 = oExplorerBar.Groups.Add("Group 4") oExplorerBar.TemplateDef = "dim var_Group3" oExplorerBar.TemplateDef = var_Group3 oExplorerBar.Template = "var_Group3.Shortcut = `Set <img>2</img>`" oExplorerBar.ShortcutBarSelCaptionBackColor = 16777216 oExplorerBar.ExpandShortcutCount = 1 |
79 |
How do I change the selection background color in the shortcut bar
Dim oExplorerBar as P Dim var_Group as local Dim var_Group1 as local Dim var_Group2 as local Dim var_Group3 as local oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=") oExplorerBar.ShowShortcutBar = .t. ' oExplorerBar.Groups.Add("Group 1").Shortcut = "Set <img>1</img>" var_Group = oExplorerBar.Groups.Add("Group 1") oExplorerBar.TemplateDef = "dim var_Group" oExplorerBar.TemplateDef = var_Group oExplorerBar.Template = "var_Group.Shortcut = `Set <img>1</img>`" ' oExplorerBar.Groups.Add("Group 2").Shortcut = "Set <img>1</img>" var_Group1 = oExplorerBar.Groups.Add("Group 2") oExplorerBar.TemplateDef = "dim var_Group1" oExplorerBar.TemplateDef = var_Group1 oExplorerBar.Template = "var_Group1.Shortcut = `Set <img>1</img>`" ' oExplorerBar.Groups.Add("Group 3").Shortcut = "Set <img>2</img>" var_Group2 = oExplorerBar.Groups.Add("Group 3") oExplorerBar.TemplateDef = "dim var_Group2" oExplorerBar.TemplateDef = var_Group2 oExplorerBar.Template = "var_Group2.Shortcut = `Set <img>2</img>`" ' oExplorerBar.Groups.Add("Group 4").Shortcut = "Set <img>2</img>" var_Group3 = oExplorerBar.Groups.Add("Group 4") oExplorerBar.TemplateDef = "dim var_Group3" oExplorerBar.TemplateDef = var_Group3 oExplorerBar.Template = "var_Group3.Shortcut = `Set <img>2</img>`" oExplorerBar.ShortcutBarSelCaptionBackColor = 255 oExplorerBar.ExpandShortcutCount = 1 |
78 |
How can I change the visual appearance of the shortcut bar, using your EBN files
Dim oExplorerBar as P Dim var_Group as local Dim var_Group1 as local Dim var_Group2 as local Dim var_Group3 as local oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=") oExplorerBar.ShowShortcutBar = .t. ' oExplorerBar.Groups.Add("Group 1").Shortcut = "Set <img>1</img>" var_Group = oExplorerBar.Groups.Add("Group 1") oExplorerBar.TemplateDef = "dim var_Group" oExplorerBar.TemplateDef = var_Group oExplorerBar.Template = "var_Group.Shortcut = `Set <img>1</img>`" ' oExplorerBar.Groups.Add("Group 2").Shortcut = "Set <img>1</img>" var_Group1 = oExplorerBar.Groups.Add("Group 2") oExplorerBar.TemplateDef = "dim var_Group1" oExplorerBar.TemplateDef = var_Group1 oExplorerBar.Template = "var_Group1.Shortcut = `Set <img>1</img>`" ' oExplorerBar.Groups.Add("Group 3").Shortcut = "Set <img>2</img>" var_Group2 = oExplorerBar.Groups.Add("Group 3") oExplorerBar.TemplateDef = "dim var_Group2" oExplorerBar.TemplateDef = var_Group2 oExplorerBar.Template = "var_Group2.Shortcut = `Set <img>2</img>`" ' oExplorerBar.Groups.Add("Group 4").Shortcut = "Set <img>2</img>" var_Group3 = oExplorerBar.Groups.Add("Group 4") oExplorerBar.TemplateDef = "dim var_Group3" oExplorerBar.TemplateDef = var_Group3 oExplorerBar.Template = "var_Group3.Shortcut = `Set <img>2</img>`" oExplorerBar.ShortcutBarSelBackColor = 16777216 |
77 |
How do I change the selection background color in the shortcut bar
Dim oExplorerBar as P Dim var_Group as local Dim var_Group1 as local Dim var_Group2 as local Dim var_Group3 as local oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=") oExplorerBar.ShowShortcutBar = .t. ' oExplorerBar.Groups.Add("Group 1").Shortcut = "Set <img>1</img>" var_Group = oExplorerBar.Groups.Add("Group 1") oExplorerBar.TemplateDef = "dim var_Group" oExplorerBar.TemplateDef = var_Group oExplorerBar.Template = "var_Group.Shortcut = `Set <img>1</img>`" ' oExplorerBar.Groups.Add("Group 2").Shortcut = "Set <img>1</img>" var_Group1 = oExplorerBar.Groups.Add("Group 2") oExplorerBar.TemplateDef = "dim var_Group1" oExplorerBar.TemplateDef = var_Group1 oExplorerBar.Template = "var_Group1.Shortcut = `Set <img>1</img>`" ' oExplorerBar.Groups.Add("Group 3").Shortcut = "Set <img>2</img>" var_Group2 = oExplorerBar.Groups.Add("Group 3") oExplorerBar.TemplateDef = "dim var_Group2" oExplorerBar.TemplateDef = var_Group2 oExplorerBar.Template = "var_Group2.Shortcut = `Set <img>2</img>`" ' oExplorerBar.Groups.Add("Group 4").Shortcut = "Set <img>2</img>" var_Group3 = oExplorerBar.Groups.Add("Group 4") oExplorerBar.TemplateDef = "dim var_Group3" oExplorerBar.TemplateDef = var_Group3 oExplorerBar.Template = "var_Group3.Shortcut = `Set <img>2</img>`" oExplorerBar.ShortcutBarSelBackColor = 255 |
76 |
How can I change the visual appearance of the shortcut bar, using your EBN files
Dim oExplorerBar as P Dim var_Group as local Dim var_Group1 as local Dim var_Group2 as local Dim var_Group3 as local oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=") oExplorerBar.ShowShortcutBar = .t. ' oExplorerBar.Groups.Add("Group 1").Shortcut = "Set <img>1</img>" var_Group = oExplorerBar.Groups.Add("Group 1") oExplorerBar.TemplateDef = "dim var_Group" oExplorerBar.TemplateDef = var_Group oExplorerBar.Template = "var_Group.Shortcut = `Set <img>1</img>`" ' oExplorerBar.Groups.Add("Group 2").Shortcut = "Set <img>1</img>" var_Group1 = oExplorerBar.Groups.Add("Group 2") oExplorerBar.TemplateDef = "dim var_Group1" oExplorerBar.TemplateDef = var_Group1 oExplorerBar.Template = "var_Group1.Shortcut = `Set <img>1</img>`" ' oExplorerBar.Groups.Add("Group 3").Shortcut = "Set <img>2</img>" var_Group2 = oExplorerBar.Groups.Add("Group 3") oExplorerBar.TemplateDef = "dim var_Group2" oExplorerBar.TemplateDef = var_Group2 oExplorerBar.Template = "var_Group2.Shortcut = `Set <img>2</img>`" ' oExplorerBar.Groups.Add("Group 4").Shortcut = "Set <img>2</img>" var_Group3 = oExplorerBar.Groups.Add("Group 4") oExplorerBar.TemplateDef = "dim var_Group3" oExplorerBar.TemplateDef = var_Group3 oExplorerBar.Template = "var_Group3.Shortcut = `Set <img>2</img>`" oExplorerBar.ShortcutBarBackColor = 16777216 |
75 |
How do I change the background color in the shortcut bar
Dim oExplorerBar as P Dim var_Group as local Dim var_Group1 as local Dim var_Group2 as local Dim var_Group3 as local oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=") oExplorerBar.ShowShortcutBar = .t. ' oExplorerBar.Groups.Add("Group 1").Shortcut = "Set <img>1</img>" var_Group = oExplorerBar.Groups.Add("Group 1") oExplorerBar.TemplateDef = "dim var_Group" oExplorerBar.TemplateDef = var_Group oExplorerBar.Template = "var_Group.Shortcut = `Set <img>1</img>`" ' oExplorerBar.Groups.Add("Group 2").Shortcut = "Set <img>1</img>" var_Group1 = oExplorerBar.Groups.Add("Group 2") oExplorerBar.TemplateDef = "dim var_Group1" oExplorerBar.TemplateDef = var_Group1 oExplorerBar.Template = "var_Group1.Shortcut = `Set <img>1</img>`" ' oExplorerBar.Groups.Add("Group 3").Shortcut = "Set <img>2</img>" var_Group2 = oExplorerBar.Groups.Add("Group 3") oExplorerBar.TemplateDef = "dim var_Group2" oExplorerBar.TemplateDef = var_Group2 oExplorerBar.Template = "var_Group2.Shortcut = `Set <img>2</img>`" ' oExplorerBar.Groups.Add("Group 4").Shortcut = "Set <img>2</img>" var_Group3 = oExplorerBar.Groups.Add("Group 4") oExplorerBar.TemplateDef = "dim var_Group3" oExplorerBar.TemplateDef = var_Group3 oExplorerBar.Template = "var_Group3.Shortcut = `Set <img>2</img>`" oExplorerBar.ShortcutBarBackColor = 255 |
74 |
How can I programmatically change expand or collapse the shortcut bar
Dim oExplorerBar as P Dim var_Group as local Dim var_Group1 as local Dim var_Group2 as local Dim var_Group3 as local oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=") oExplorerBar.ShowShortcutBar = .t. ' oExplorerBar.Groups.Add("Group 1").Shortcut = "Set <img>1</img>" var_Group = oExplorerBar.Groups.Add("Group 1") oExplorerBar.TemplateDef = "dim var_Group" oExplorerBar.TemplateDef = var_Group oExplorerBar.Template = "var_Group.Shortcut = `Set <img>1</img>`" ' oExplorerBar.Groups.Add("Group 2").Shortcut = "Set <img>1</img>" var_Group1 = oExplorerBar.Groups.Add("Group 2") oExplorerBar.TemplateDef = "dim var_Group1" oExplorerBar.TemplateDef = var_Group1 oExplorerBar.Template = "var_Group1.Shortcut = `Set <img>1</img>`" ' oExplorerBar.Groups.Add("Group 3").Shortcut = "Set <img>2</img>" var_Group2 = oExplorerBar.Groups.Add("Group 3") oExplorerBar.TemplateDef = "dim var_Group2" oExplorerBar.TemplateDef = var_Group2 oExplorerBar.Template = "var_Group2.Shortcut = `Set <img>2</img>`" ' oExplorerBar.Groups.Add("Group 4").Shortcut = "Set <img>2</img>" var_Group3 = oExplorerBar.Groups.Add("Group 4") oExplorerBar.TemplateDef = "dim var_Group3" oExplorerBar.TemplateDef = var_Group3 oExplorerBar.Template = "var_Group3.Shortcut = `Set <img>2</img>`" oExplorerBar.ExpandShortcutCount = 1 |
73 |
How do I change the icon for the expanding or collapsing the shortcut bar
Dim oExplorerBar as P Dim var_Group as local Dim var_Group1 as local Dim var_Group2 as local Dim var_Group3 as local oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=") oExplorerBar.ShowShortcutBar = .t. ' oExplorerBar.Groups.Add("Group 1").Shortcut = "Set <img>1</img>" var_Group = oExplorerBar.Groups.Add("Group 1") oExplorerBar.TemplateDef = "dim var_Group" oExplorerBar.TemplateDef = var_Group oExplorerBar.Template = "var_Group.Shortcut = `Set <img>1</img>`" ' oExplorerBar.Groups.Add("Group 2").Shortcut = "Set <img>1</img>" var_Group1 = oExplorerBar.Groups.Add("Group 2") oExplorerBar.TemplateDef = "dim var_Group1" oExplorerBar.TemplateDef = var_Group1 oExplorerBar.Template = "var_Group1.Shortcut = `Set <img>1</img>`" ' oExplorerBar.Groups.Add("Group 3").Shortcut = "Set <img>2</img>" var_Group2 = oExplorerBar.Groups.Add("Group 3") oExplorerBar.TemplateDef = "dim var_Group2" oExplorerBar.TemplateDef = var_Group2 oExplorerBar.Template = "var_Group2.Shortcut = `Set <img>2</img>`" ' oExplorerBar.Groups.Add("Group 4").Shortcut = "Set <img>2</img>" var_Group3 = oExplorerBar.Groups.Add("Group 4") oExplorerBar.TemplateDef = "dim var_Group3" oExplorerBar.TemplateDef = var_Group3 oExplorerBar.Template = "var_Group3.Shortcut = `Set <img>2</img>`" oExplorerBar.ExpandShortcutImage = 3 |
72 |
How can I enable or disable resizing the shortcut bar
Dim oExplorerBar as P Dim var_Group as local Dim var_Group1 as local Dim var_Group2 as local Dim var_Group3 as local oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=") oExplorerBar.ShowShortcutBar = .t. ' oExplorerBar.Groups.Add("Group 1").Shortcut = "Set <img>1</img>" var_Group = oExplorerBar.Groups.Add("Group 1") oExplorerBar.TemplateDef = "dim var_Group" oExplorerBar.TemplateDef = var_Group oExplorerBar.Template = "var_Group.Shortcut = `Set <img>1</img>`" ' oExplorerBar.Groups.Add("Group 2").Shortcut = "Set <img>1</img>" var_Group1 = oExplorerBar.Groups.Add("Group 2") oExplorerBar.TemplateDef = "dim var_Group1" oExplorerBar.TemplateDef = var_Group1 oExplorerBar.Template = "var_Group1.Shortcut = `Set <img>1</img>`" ' oExplorerBar.Groups.Add("Group 3").Shortcut = "Set <img>2</img>" var_Group2 = oExplorerBar.Groups.Add("Group 3") oExplorerBar.TemplateDef = "dim var_Group2" oExplorerBar.TemplateDef = var_Group2 oExplorerBar.Template = "var_Group2.Shortcut = `Set <img>2</img>`" ' oExplorerBar.Groups.Add("Group 4").Shortcut = "Set <img>2</img>" var_Group3 = oExplorerBar.Groups.Add("Group 4") oExplorerBar.TemplateDef = "dim var_Group3" oExplorerBar.TemplateDef = var_Group3 oExplorerBar.Template = "var_Group3.Shortcut = `Set <img>2</img>`" oExplorerBar.ExpandShortcutCount = 1 oExplorerBar.AllowResizeShortcutBar = .f. |
71 |
How do I specify the height of the shortcut bar
Dim oExplorerBar as P Dim var_Group as local Dim var_Group1 as local Dim var_Group2 as local Dim var_Group3 as local oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=") oExplorerBar.ShowShortcutBar = .t. ' oExplorerBar.Groups.Add("Group 1").Shortcut = "Set <img>1</img>" var_Group = oExplorerBar.Groups.Add("Group 1") oExplorerBar.TemplateDef = "dim var_Group" oExplorerBar.TemplateDef = var_Group oExplorerBar.Template = "var_Group.Shortcut = `Set <img>1</img>`" ' oExplorerBar.Groups.Add("Group 2").Shortcut = "Set <img>1</img>" var_Group1 = oExplorerBar.Groups.Add("Group 2") oExplorerBar.TemplateDef = "dim var_Group1" oExplorerBar.TemplateDef = var_Group1 oExplorerBar.Template = "var_Group1.Shortcut = `Set <img>1</img>`" ' oExplorerBar.Groups.Add("Group 3").Shortcut = "Set <img>2</img>" var_Group2 = oExplorerBar.Groups.Add("Group 3") oExplorerBar.TemplateDef = "dim var_Group2" oExplorerBar.TemplateDef = var_Group2 oExplorerBar.Template = "var_Group2.Shortcut = `Set <img>2</img>`" ' oExplorerBar.Groups.Add("Group 4").Shortcut = "Set <img>2</img>" var_Group3 = oExplorerBar.Groups.Add("Group 4") oExplorerBar.TemplateDef = "dim var_Group3" oExplorerBar.TemplateDef = var_Group3 oExplorerBar.Template = "var_Group3.Shortcut = `Set <img>2</img>`" oExplorerBar.ExpandShortcutCount = 1 oExplorerBar.ShortcutBarHeight = 16 |
70 |
How do I select a shortcut
Dim oExplorerBar as P Dim var_Group as local Dim var_Group1 as local Dim var_Group2 as local Dim var_Group3 as local oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=") oExplorerBar.ShowShortcutBar = .t. ' oExplorerBar.Groups.Add("Group 1").Shortcut = "Set <img>1</img>" var_Group = oExplorerBar.Groups.Add("Group 1") oExplorerBar.TemplateDef = "dim var_Group" oExplorerBar.TemplateDef = var_Group oExplorerBar.Template = "var_Group.Shortcut = `Set <img>1</img>`" ' oExplorerBar.Groups.Add("Group 2").Shortcut = "Set <img>1</img>" var_Group1 = oExplorerBar.Groups.Add("Group 2") oExplorerBar.TemplateDef = "dim var_Group1" oExplorerBar.TemplateDef = var_Group1 oExplorerBar.Template = "var_Group1.Shortcut = `Set <img>1</img>`" ' oExplorerBar.Groups.Add("Group 3").Shortcut = "Set <img>2</img>" var_Group2 = oExplorerBar.Groups.Add("Group 3") oExplorerBar.TemplateDef = "dim var_Group2" oExplorerBar.TemplateDef = var_Group2 oExplorerBar.Template = "var_Group2.Shortcut = `Set <img>2</img>`" ' oExplorerBar.Groups.Add("Group 4").Shortcut = "Set <img>2</img>" var_Group3 = oExplorerBar.Groups.Add("Group 4") oExplorerBar.TemplateDef = "dim var_Group3" oExplorerBar.TemplateDef = var_Group3 oExplorerBar.Template = "var_Group3.Shortcut = `Set <img>2</img>`" oExplorerBar.ExpandShortcutCount = 1 oExplorerBar.SelectShortcut = "Set <img>2</img>" |
69 |
How do I show or hide the shortcut bar
Dim oExplorerBar as P Dim var_Group as local Dim var_Group1 as local Dim var_Group2 as local Dim var_Group3 as local oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=") oExplorerBar.ShowShortcutBar = .t. ' oExplorerBar.Groups.Add("Group 1").Shortcut = "Set <img>1</img>" var_Group = oExplorerBar.Groups.Add("Group 1") oExplorerBar.TemplateDef = "dim var_Group" oExplorerBar.TemplateDef = var_Group oExplorerBar.Template = "var_Group.Shortcut = `Set <img>1</img>`" ' oExplorerBar.Groups.Add("Group 2").Shortcut = "Set <img>1</img>" var_Group1 = oExplorerBar.Groups.Add("Group 2") oExplorerBar.TemplateDef = "dim var_Group1" oExplorerBar.TemplateDef = var_Group1 oExplorerBar.Template = "var_Group1.Shortcut = `Set <img>1</img>`" ' oExplorerBar.Groups.Add("Group 3").Shortcut = "Set <img>2</img>" var_Group2 = oExplorerBar.Groups.Add("Group 3") oExplorerBar.TemplateDef = "dim var_Group2" oExplorerBar.TemplateDef = var_Group2 oExplorerBar.Template = "var_Group2.Shortcut = `Set <img>2</img>`" ' oExplorerBar.Groups.Add("Group 4").Shortcut = "Set <img>2</img>" var_Group3 = oExplorerBar.Groups.Add("Group 4") oExplorerBar.TemplateDef = "dim var_Group3" oExplorerBar.TemplateDef = var_Group3 oExplorerBar.Template = "var_Group3.Shortcut = `Set <img>2</img>`" oExplorerBar.ExpandShortcutCount = 1 |
68 |
How do I access the groups collection
Dim oExplorerBar as P oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.Groups.Add("Group 1") |
67 |
Can I change the visual effect, appearance for the anchor, hyperlink elements, in HTML captions, after the user clicks it
Dim oExplorerBar as P Dim var_Group as local oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.Template = "FormatAnchor(False) = `<b><u><fgcolor=FF0000> </fgcolor></u></b>`" // oExplorerBar.FormatAnchor(.f.) = "<b><u><fgcolor=FF0000> </fgcolor></u></b>" oExplorerBar.HighlightItemType = 0 oExplorerBar.HandCursor = .f. ' oExplorerBar.Groups.Add("Group <a1><b>1</b></a>").CaptionFormat = 1 var_Group = oExplorerBar.Groups.Add("Group <a1><b>1</b></a>") oExplorerBar.TemplateDef = "dim var_Group" oExplorerBar.TemplateDef = var_Group oExplorerBar.Template = "var_Group.CaptionFormat = 1" |
66 |
Can I change the visual effect, appearance for the anchor, hyperlink elements, in HTML captions, after the user clicks it
Dim oExplorerBar as P Dim var_Group as P Dim var_Item as local oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.Template = "FormatAnchor(False) = `<b><u><fgcolor=FF0000> </fgcolor></u></b>`" // oExplorerBar.FormatAnchor(.f.) = "<b><u><fgcolor=FF0000> </fgcolor></u></b>" oExplorerBar.HighlightItemType = 0 oExplorerBar.HandCursor = .f. var_Group = oExplorerBar.Groups.Add("Group 1") ' var_Group.AddItem("Item <a1><b>1</b></a>").CaptionFormat = 1 var_Item = var_Group.AddItem("Item <a1><b>1</b></a>") oExplorerBar.TemplateDef = "dim var_Item" oExplorerBar.TemplateDef = var_Item oExplorerBar.Template = "var_Item.CaptionFormat = 1" var_Group.Expanded = .t. |
65 |
Can I change the visual effect, appearance for the anchor, hyperlink elements, in HTML captions
Dim oExplorerBar as P Dim var_Group as local oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.HighlightItemType = 0 oExplorerBar.HandCursor = .f. oExplorerBar.Template = "FormatAnchor(True) = `<b><u><fgcolor=FF0000> </fgcolor></u></b>`" // oExplorerBar.FormatAnchor(.t.) = "<b><u><fgcolor=FF0000> </fgcolor></u></b>" ' oExplorerBar.Groups.Add("Group <a1><b>1</b></a>").CaptionFormat = 1 var_Group = oExplorerBar.Groups.Add("Group <a1><b>1</b></a>") oExplorerBar.TemplateDef = "dim var_Group" oExplorerBar.TemplateDef = var_Group oExplorerBar.Template = "var_Group.CaptionFormat = 1" |
64 |
Can I change the visual effect, appearance for the anchor, hyperlink elements, in HTML captions
Dim oExplorerBar as P Dim var_Group as P Dim var_Item as local oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.HighlightItemType = 0 oExplorerBar.HandCursor = .f. oExplorerBar.Template = "FormatAnchor(True) = `<b><u><fgcolor=FF0000> </fgcolor></u></b>`" // oExplorerBar.FormatAnchor(.t.) = "<b><u><fgcolor=FF0000> </fgcolor></u></b>" var_Group = oExplorerBar.Groups.Add("Group 1") ' var_Group.AddItem("Item <a1><b>1</b></a>").CaptionFormat = 1 var_Item = var_Group.AddItem("Item <a1><b>1</b></a>") oExplorerBar.TemplateDef = "dim var_Item" oExplorerBar.TemplateDef = var_Item oExplorerBar.Template = "var_Item.CaptionFormat = 1" var_Group.Expanded = .t. |
63 |
How can I add several pictures and icons to an item
Dim oExplorerBar as P Dim var_Group as P Dim var_Item as P oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=") oExplorerBar.Template = "HTMLPicture(`pic1`) = `c:\exontrol\images\zipdisk.gif`" // oExplorerBar.HTMLPicture("pic1") = "c:\exontrol\images\zipdisk.gif" oExplorerBar.Template = "HTMLPicture(`pic2`) = `c:\exontrol\images\auction.gif`" // oExplorerBar.HTMLPicture("pic2") = "c:\exontrol\images\auction.gif" var_Group = oExplorerBar.Groups.Add("Group 1") var_Group.ItemHeight = 48 var_Item = var_Group.AddItem("<img>pic1</img> te <img>1:4</img><img>1:4</img><img>1:4</img><img>1</img> xt <img>pic2</img>") var_Item.Image = 2 var_Item.CaptionFormat = 1 var_Group.Expanded = .t. |
62 |
How can I add several pictures and icons to an item
Dim oExplorerBar as P Dim var_Group as P Dim var_Item as P oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=") oExplorerBar.Template = "HTMLPicture(`pic1`) = `c:\exontrol\images\zipdisk.gif`" // oExplorerBar.HTMLPicture("pic1") = "c:\exontrol\images\zipdisk.gif" oExplorerBar.Template = "HTMLPicture(`pic2`) = `c:\exontrol\images\auction.gif`" // oExplorerBar.HTMLPicture("pic2") = "c:\exontrol\images\auction.gif" var_Group = oExplorerBar.Groups.Add("Group 1") var_Group.ItemHeight = 48 var_Item = var_Group.AddItem("<img>pic1</img> te <img>1:4</img><img>1:4</img><img>1:4</img><img>1</img> xt <img>pic2</img>") var_Item.Image = 2 var_Item.CaptionFormat = 1 var_Group.Expanded = .t. |
61 |
How can I add several pictures to an item
Dim oExplorerBar as P Dim var_Group as P Dim var_Item as local oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.Template = "HTMLPicture(`pic1`) = `c:\exontrol\images\zipdisk.gif`" // oExplorerBar.HTMLPicture("pic1") = "c:\exontrol\images\zipdisk.gif" oExplorerBar.Template = "HTMLPicture(`pic2`) = `c:\exontrol\images\auction.gif`" // oExplorerBar.HTMLPicture("pic2") = "c:\exontrol\images\auction.gif" var_Group = oExplorerBar.Groups.Add("Group 1") var_Group.ItemHeight = 48 ' var_Group.AddItem("<img>pic1</img> text <img>pic2</img>").CaptionFormat = 1 var_Item = var_Group.AddItem("<img>pic1</img> text <img>pic2</img>") oExplorerBar.TemplateDef = "dim var_Item" oExplorerBar.TemplateDef = var_Item oExplorerBar.Template = "var_Item.CaptionFormat = 1" var_Group.Expanded = .t. |
60 |
How can I add several pictures to a group
Dim oExplorerBar as P Dim var_Group as P oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=") oExplorerBar.Template = "HTMLPicture(`pic1`) = `c:\exontrol\images\zipdisk.gif`" // oExplorerBar.HTMLPicture("pic1") = "c:\exontrol\images\zipdisk.gif" oExplorerBar.Template = "HTMLPicture(`pic2`) = `c:\exontrol\images\auction.gif`" // oExplorerBar.HTMLPicture("pic2") = "c:\exontrol\images\auction.gif" oExplorerBar.GroupHeight = 48 var_Group = oExplorerBar.Groups.Add("<img>pic1</img> te <img>1:4</img><img>1:4</img><img>1:4</img><img>1</img> xt <img>pic2</img>") var_Group.Image = 2 var_Group.CaptionFormat = 1 var_Group.Picture = oExplorerBar.ExecuteTemplate("loadpicture(`c:\exontrol\images\colorize.gif`)") var_Group.AddItem("Item 1") var_Group.AddItem("Item 2") var_Group.Expanded = .t. |
59 |
How can I add several pictures and icons to a group
Dim oExplorerBar as P Dim var_Group as local oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=") oExplorerBar.Template = "HTMLPicture(`pic1`) = `c:\exontrol\images\zipdisk.gif`" // oExplorerBar.HTMLPicture("pic1") = "c:\exontrol\images\zipdisk.gif" oExplorerBar.Template = "HTMLPicture(`pic2`) = `c:\exontrol\images\auction.gif`" // oExplorerBar.HTMLPicture("pic2") = "c:\exontrol\images\auction.gif" oExplorerBar.GroupHeight = 48 ' oExplorerBar.Groups.Add("<img>pic1</img> te <img>1:4</img><img>1:4</img><img>1:4</img><img>1</img> xt <img>pic2</img>").CaptionFormat = 1 var_Group = oExplorerBar.Groups.Add("<img>pic1</img> te <img>1:4</img><img>1:4</img><img>1:4</img><img>1</img> xt <img>pic2</img>") oExplorerBar.TemplateDef = "dim var_Group" oExplorerBar.TemplateDef = var_Group oExplorerBar.Template = "var_Group.CaptionFormat = 1" |
58 |
How can I add several pictures to a group
Dim oExplorerBar as P Dim var_Group as P oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.Template = "HTMLPicture(`pic1`) = `c:\exontrol\images\zipdisk.gif`" // oExplorerBar.HTMLPicture("pic1") = "c:\exontrol\images\zipdisk.gif" oExplorerBar.Template = "HTMLPicture(`pic2`) = `c:\exontrol\images\auction.gif`" // oExplorerBar.HTMLPicture("pic2") = "c:\exontrol\images\auction.gif" oExplorerBar.GroupHeight = 48 var_Group = oExplorerBar.Groups.Add("<img>pic1</img> text <img>pic2</img>") var_Group.CaptionFormat = 1 var_Group.Picture = oExplorerBar.ExecuteTemplate("loadpicture(`c:\exontrol\images\colorize.gif`)") var_Group.AddItem("Item 1") var_Group.AddItem("Item 2") var_Group.Expanded = .t. |
57 |
How can I add several pictures to a group
Dim oExplorerBar as P Dim var_Group as local oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.Template = "HTMLPicture(`pic1`) = `c:\exontrol\images\zipdisk.gif`" // oExplorerBar.HTMLPicture("pic1") = "c:\exontrol\images\zipdisk.gif" oExplorerBar.Template = "HTMLPicture(`pic2`) = `c:\exontrol\images\auction.gif`" // oExplorerBar.HTMLPicture("pic2") = "c:\exontrol\images\auction.gif" oExplorerBar.GroupHeight = 48 ' oExplorerBar.Groups.Add("<img>pic1</img> text <img>pic2</img>").CaptionFormat = 1 var_Group = oExplorerBar.Groups.Add("<img>pic1</img> text <img>pic2</img>") oExplorerBar.TemplateDef = "dim var_Group" oExplorerBar.TemplateDef = var_Group oExplorerBar.Template = "var_Group.CaptionFormat = 1" |
56 |
How do I force refreshing the control
Dim oExplorerBar as P Dim var_Group as P oExplorerBar = topparent:CONTROL_ACTIVEX1.activex var_Group = oExplorerBar.Groups.Add("Group 1") var_Group.Expanded = .t. var_Group.AddItem("Item 1") oExplorerBar.Refresh() |
55 |
How can show or hide the focus rectangle
Dim oExplorerBar as P Dim var_Group as P oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.ShowFocusRect = .f. var_Group = oExplorerBar.Groups.Add("Group 1") var_Group.Expanded = .t. var_Group.AddItem("Item 1") |
54 |
I've seen that the width of the tooltip is variable. Can I make it larger
Dim oExplorerBar as P Dim var_Group as local oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.ToolTipWidth = 328 ' oExplorerBar.Groups.Add("ToolTip").ToolTip = "<font Tahoma;11>T</font>his is an HTML <b>tooltip</b> assigned to a group." var_Group = oExplorerBar.Groups.Add("ToolTip") oExplorerBar.TemplateDef = "dim var_Group" oExplorerBar.TemplateDef = var_Group oExplorerBar.Template = "var_Group.ToolTip = `<font Tahoma;11>T</font>his is an HTML <b>tooltip</b> assigned to a group.`" |
53 |
How do I let the tooltip being displayed longer
Dim oExplorerBar as P Dim var_Group as local oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.ToolTipPopDelay = 10000 ' oExplorerBar.Groups.Add("ToolTip").ToolTip = "<font Tahoma;11>T</font>his is an HTML <b>tooltip</b> assigned to a group." var_Group = oExplorerBar.Groups.Add("ToolTip") oExplorerBar.TemplateDef = "dim var_Group" oExplorerBar.TemplateDef = var_Group oExplorerBar.Template = "var_Group.ToolTip = `<font Tahoma;11>T</font>his is an HTML <b>tooltip</b> assigned to a group.`" |
52 |
Can I change the default border of the tooltip, using your EBN files
Dim oExplorerBar as P Dim var_Group as local oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.ToolTipDelay = 1 oExplorerBar.ToolTipWidth = 364 oExplorerBar.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") oExplorerBar.Template = "Background(64) = 16777216" // oExplorerBar.Background(64) = 16777216 ' oExplorerBar.Groups.Add("ToolTip").ToolTip = "<font Tahoma;11>T</font>his is an HTML <b>tooltip</b> assigned to a group." var_Group = oExplorerBar.Groups.Add("ToolTip") oExplorerBar.TemplateDef = "dim var_Group" oExplorerBar.TemplateDef = var_Group oExplorerBar.Template = "var_Group.ToolTip = `<font Tahoma;11>T</font>his is an HTML <b>tooltip</b> assigned to a group.`" |
51 |
Can I change the background color for the tooltip
Dim oExplorerBar as P Dim var_Group as local oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.ToolTipDelay = 1 oExplorerBar.ToolTipWidth = 364 oExplorerBar.Template = "Background(65) = 255" // oExplorerBar.Background(65) = 255 ' oExplorerBar.Groups.Add("ToolTip").ToolTip = "<font Tahoma;11>T</font>his is an HTML <b>tooltip</b> assigned to a group." var_Group = oExplorerBar.Groups.Add("ToolTip") oExplorerBar.TemplateDef = "dim var_Group" oExplorerBar.TemplateDef = var_Group oExplorerBar.Template = "var_Group.ToolTip = `<font Tahoma;11>T</font>his is an HTML <b>tooltip</b> assigned to a group.`" |
50 |
Does the tooltip support HTML format
Dim oExplorerBar as P Dim var_Group as local oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.ToolTipDelay = 1 oExplorerBar.ToolTipWidth = 364 ' oExplorerBar.Groups.Add("ToolTip").ToolTip = "<font Tahoma;11>T</font>his is an HTML <b>tooltip</b> assigned to a <fgcolor=FF0000>group</fgcolor>" var_Group = oExplorerBar.Groups.Add("ToolTip") oExplorerBar.TemplateDef = "dim var_Group" oExplorerBar.TemplateDef = var_Group oExplorerBar.Template = "var_Group.ToolTip = `<font Tahoma;11>T</font>his is an HTML <b>tooltip</b> assigned to a <fgcolor=FF0000>group</fgcolor>`" |
49 |
Can I change the forecolor for the tooltip
Dim oExplorerBar as P Dim var_Group as local oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.ToolTipDelay = 1 oExplorerBar.ToolTipWidth = 364 oExplorerBar.Template = "Background(66) = 255" // oExplorerBar.Background(66) = 255 ' oExplorerBar.Groups.Add("ToolTip").ToolTip = "This is a bit of text that's shown when the cursor hovers the group." var_Group = oExplorerBar.Groups.Add("ToolTip") oExplorerBar.TemplateDef = "dim var_Group" oExplorerBar.TemplateDef = var_Group oExplorerBar.Template = "var_Group.ToolTip = `This is a bit of text that's shown when the cursor hovers the group.`" |
48 |
Can I change the foreground color for the tooltip
Dim oExplorerBar as P Dim var_Group as local oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.ToolTipDelay = 1 oExplorerBar.ToolTipWidth = 364 ' oExplorerBar.Groups.Add("ToolTip").ToolTip = "<fgcolor=FF0000>This is a bit of text that's shown when the cursor hovers the group.</fgcolor>" var_Group = oExplorerBar.Groups.Add("ToolTip") oExplorerBar.TemplateDef = "dim var_Group" oExplorerBar.TemplateDef = var_Group oExplorerBar.Template = "var_Group.ToolTip = `<fgcolor=FF0000>This is a bit of text that's shown when the cursor hovers the group.</fgcolor>`" |
47 |
Can I change the font for the tooltip
Dim oExplorerBar as P Dim var_Group as local oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.ToolTipDelay = 1 oExplorerBar.ToolTipWidth = 364 ' oExplorerBar.Groups.Add("ToolTip").ToolTip = "<font Tahoma>This is a bit of text that's shown when the cursor hovers the group.</font> Back to the normal font" var_Group = oExplorerBar.Groups.Add("ToolTip") oExplorerBar.TemplateDef = "dim var_Group" oExplorerBar.TemplateDef = var_Group oExplorerBar.Template = "var_Group.ToolTip = `<font Tahoma>This is a bit of text that's shown when the cursor hovers the group.</font> Back to the normal font`" |
46 |
Can I change the font for the tooltip
Dim oExplorerBar as P Dim var_Group as local Dim var_StdFont as P oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.ToolTipDelay = 1 var_StdFont = oExplorerBar.ToolTipFont var_StdFont.Name = "Tahoma" var_StdFont.Size = 14 oExplorerBar.ToolTipWidth = 364 ' oExplorerBar.Groups.Add("ToolTip").ToolTip = "This is a bit of text that's shown when the cursor hovers the group." var_Group = oExplorerBar.Groups.Add("ToolTip") oExplorerBar.TemplateDef = "dim var_Group" oExplorerBar.TemplateDef = var_Group oExplorerBar.Template = "var_Group.ToolTip = `This is a bit of text that's shown when the cursor hovers the group.`" |
45 |
How do I disable showing the tooltip for all control
Dim oExplorerBar as P Dim var_Group as local oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.ToolTipDelay = 0 ' oExplorerBar.Groups.Add("ToolTip").ToolTip = "This is a bit of text that's shown when the cursor hovers the group." var_Group = oExplorerBar.Groups.Add("ToolTip") oExplorerBar.TemplateDef = "dim var_Group" oExplorerBar.TemplateDef = var_Group oExplorerBar.Template = "var_Group.ToolTip = `This is a bit of text that's shown when the cursor hovers the group.`" |
44 |
How do I show the tooltip quicker
Dim oExplorerBar as P Dim var_Group as local oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.ToolTipDelay = 1 ' oExplorerBar.Groups.Add("ToolTip").ToolTip = "This is a bit of text that's shown when the cursor hovers the group." var_Group = oExplorerBar.Groups.Add("ToolTip") oExplorerBar.TemplateDef = "dim var_Group" oExplorerBar.TemplateDef = var_Group oExplorerBar.Template = "var_Group.ToolTip = `This is a bit of text that's shown when the cursor hovers the group.`" |
43 |
How do I call your x-script language
Dim oExplorerBar as P Dim var_Group as P oExplorerBar = topparent:CONTROL_ACTIVEX1.activex var_Group = oExplorerBar.ExecuteTemplate("Groups.Add(`Group 1`)") var_Group.AddItem("Item 1") var_Group.Expanded = .t. |
42 |
How do I call your x-script language
Dim oExplorerBar as P oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.Template = "BackColor = RGB(255,0,0)" |
41 |
How can I hide a tooltip when the item exceeds its area, so ... are displayed
Dim oExplorerBar as P Dim var_Group as P oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.AllowTooltip = .f. var_Group = oExplorerBar.Groups.Add("Group 1") var_Group.Expanded = .t. var_Group.AddItem("This isa very long text that should break the control in several pieces") |
40 |
How can I show a tooltip when the item exceeds its area, so ... are displayed
Dim oExplorerBar as P Dim var_Group as P oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.AllowTooltip = .t. var_Group = oExplorerBar.Groups.Add("Group 1") var_Group.Expanded = .t. var_Group.AddItem("This isa very long text that should break the control in several pieces") |
39 |
How do I specify the distance between two groups
Dim oExplorerBar as P oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.BorderGroupHeight = 0 oExplorerBar.Groups.Add("Group 1") oExplorerBar.Groups.Add("Group 2").AddItem("Item 2") |
38 |
How can I change the expand / collapse buttons
Dim oExplorerBar as P Dim var_Group as P oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=") oExplorerBar.Template = "ExpandIcon(True) = 1" // oExplorerBar.ExpandIcon(.t.) = 1 oExplorerBar.Template = "ExpandIcon(False) = 2" // oExplorerBar.ExpandIcon(.f.) = 2 var_Group = oExplorerBar.Groups.Add("Group 1") var_Group.AddItem("Item 1") var_Group.Expanded = .t. oExplorerBar.Groups.Add("Group 2").AddItem("Item 2") oExplorerBar.EndUpdate() |
37 |
How do I enable or disable the control
Dim oExplorerBar as P Dim var_Group as P Dim var_Item as local oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.Enabled = .f. var_Group = oExplorerBar.Groups.Add("Group 1") ' var_Group.AddItem("Item 1").Image = 1 var_Item = var_Group.AddItem("Item 1") oExplorerBar.TemplateDef = "dim var_Item" oExplorerBar.TemplateDef = var_Item oExplorerBar.Template = "var_Item.Image = 1" var_Group.Expanded = .t. oExplorerBar.Groups.Add("Group 2").AddItem("Item 2") |
36 |
How do I hide the icons in the right side of the group, the expand / collapse buttons
Dim oExplorerBar as P Dim var_Group as P Dim var_Item as local oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.BeginUpdate() oExplorerBar.DisplayExpandIcon = .f. oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=") var_Group = oExplorerBar.Groups.Add("Group 1") ' var_Group.AddItem("Item 1").Image = 1 var_Item = var_Group.AddItem("Item 1") oExplorerBar.TemplateDef = "dim var_Item" oExplorerBar.TemplateDef = var_Item oExplorerBar.Template = "var_Item.Image = 1" var_Group.Expanded = .t. oExplorerBar.Groups.Add("Group 2").AddItem("Item 2") oExplorerBar.EndUpdate() |
35 |
Is there any option to stop using the hand shape cursor, when the cursor hovers an item
Dim oExplorerBar as P Dim var_Group as P Dim var_Item as local oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.BeginUpdate() oExplorerBar.HandCursor = .f. oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=") oExplorerBar.HighlightItemType = 0 var_Group = oExplorerBar.Groups.Add("Group 1") ' var_Group.AddItem("Item 1").Image = 1 var_Item = var_Group.AddItem("Item 1") oExplorerBar.TemplateDef = "dim var_Item" oExplorerBar.TemplateDef = var_Item oExplorerBar.Template = "var_Item.Image = 1" var_Group.Expanded = .t. oExplorerBar.Groups.Add("Group 2").AddItem("Item 2") oExplorerBar.EndUpdate() |
34 |
How do I specify the color to highlight the item
Dim oExplorerBar as P Dim var_Group as P Dim var_Item as local oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.BeginUpdate() oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=") oExplorerBar.HyperLinkColor = 255 oExplorerBar.HighlightItemType = 4 var_Group = oExplorerBar.Groups.Add("Group 1") ' var_Group.AddItem("Item 1").Image = 1 var_Item = var_Group.AddItem("Item 1") oExplorerBar.TemplateDef = "dim var_Item" oExplorerBar.TemplateDef = var_Item oExplorerBar.Template = "var_Item.Image = 1" var_Group.Expanded = .t. oExplorerBar.Groups.Add("Group 2").AddItem("Item 2") oExplorerBar.EndUpdate() |
33 |
How can I expand or collapse a group when I click only its right icon
Dim oExplorerBar as P Dim var_Group as P Dim var_Item as local oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.BeginUpdate() oExplorerBar.ExpandOnClick = .f. oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=") oExplorerBar.HighlightItemType = 4 var_Group = oExplorerBar.Groups.Add("Group 1") ' var_Group.AddItem("Item 1").Image = 1 var_Item = var_Group.AddItem("Item 1") oExplorerBar.TemplateDef = "dim var_Item" oExplorerBar.TemplateDef = var_Item oExplorerBar.Template = "var_Item.Image = 1" var_Group.Expanded = .t. oExplorerBar.Groups.Add("Group 2").AddItem("Item 2") oExplorerBar.EndUpdate() |
32 |
How do I remove the control's borders
Dim oExplorerBar as P Dim var_Group as P Dim var_Item as local oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.BeginUpdate() oExplorerBar.Appearance = 0 oExplorerBar.BorderWidth = 0 oExplorerBar.BorderHeight = 0 oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=") oExplorerBar.HighlightItemType = 4 var_Group = oExplorerBar.Groups.Add("Group 1") ' var_Group.AddItem("Item 1").Image = 1 var_Item = var_Group.AddItem("Item 1") oExplorerBar.TemplateDef = "dim var_Item" oExplorerBar.TemplateDef = var_Item oExplorerBar.Template = "var_Item.Image = 1" var_Group.Expanded = .t. oExplorerBar.Groups.Add("Group 2").AddItem("Item 2") oExplorerBar.EndUpdate() |
31 |
How do I specify width or the height of the control's borders
Dim oExplorerBar as P Dim var_Group as P Dim var_Item as local oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.BeginUpdate() oExplorerBar.Appearance = 0 oExplorerBar.BorderWidth = 0 oExplorerBar.BorderHeight = 0 oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=") oExplorerBar.HighlightItemType = 4 var_Group = oExplorerBar.Groups.Add("Group 1") ' var_Group.AddItem("Item 1").Image = 1 var_Item = var_Group.AddItem("Item 1") oExplorerBar.TemplateDef = "dim var_Item" oExplorerBar.TemplateDef = var_Item oExplorerBar.Template = "var_Item.Image = 1" var_Group.Expanded = .t. oExplorerBar.Groups.Add("Group 2").AddItem("Item 2") oExplorerBar.EndUpdate() |
30 |
How do I access the item from the point
|
29 |
How do I access the group from the point
|
28 |
How do I specify to highlight the items in the group, when the cursor hovers the item
Dim oExplorerBar as P Dim var_Group as P Dim var_Item as local oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.BeginUpdate() oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=") oExplorerBar.HighlightItemType = 4 var_Group = oExplorerBar.Groups.Add("Group 1") ' var_Group.AddItem("Item 1").Image = 1 var_Item = var_Group.AddItem("Item 1") oExplorerBar.TemplateDef = "dim var_Item" oExplorerBar.TemplateDef = var_Item oExplorerBar.Template = "var_Item.Image = 1" var_Group.Expanded = .t. oExplorerBar.Groups.Add("Group 2").AddItem("Item 2") oExplorerBar.EndUpdate() |
27 |
How do I specify to highlight the items in the group, when the cursor hovers the item
Dim oExplorerBar as P Dim var_Group as P Dim var_Item as local oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.BeginUpdate() oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=") oExplorerBar.HighlightItemType = 3 var_Group = oExplorerBar.Groups.Add("Group 1") ' var_Group.AddItem("Item 1").Image = 1 var_Item = var_Group.AddItem("Item 1") oExplorerBar.TemplateDef = "dim var_Item" oExplorerBar.TemplateDef = var_Item oExplorerBar.Template = "var_Item.Image = 1" var_Group.Expanded = .t. oExplorerBar.Groups.Add("Group 2").AddItem("Item 2") oExplorerBar.EndUpdate() |
26 |
How do I specify to highlight the items in the group, when the cursor hovers the item
Dim oExplorerBar as P Dim var_Group as P Dim var_Item as local oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.BeginUpdate() oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=") oExplorerBar.HighlightItemType = 2 var_Group = oExplorerBar.Groups.Add("Group 1") ' var_Group.AddItem("Item 1").Image = 1 var_Item = var_Group.AddItem("Item 1") oExplorerBar.TemplateDef = "dim var_Item" oExplorerBar.TemplateDef = var_Item oExplorerBar.Template = "var_Item.Image = 1" var_Group.Expanded = .t. oExplorerBar.Groups.Add("Group 2").AddItem("Item 2") oExplorerBar.EndUpdate() |
25 |
How do I specify to highlight the items in the group, when the cursor hovers the item
Dim oExplorerBar as P Dim var_Group as P Dim var_Item as local oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.BeginUpdate() oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=") oExplorerBar.HighlightItemType = 1 var_Group = oExplorerBar.Groups.Add("Group 1") ' var_Group.AddItem("Item 1").Image = 1 var_Item = var_Group.AddItem("Item 1") oExplorerBar.TemplateDef = "dim var_Item" oExplorerBar.TemplateDef = var_Item oExplorerBar.Template = "var_Item.Image = 1" var_Group.Expanded = .t. oExplorerBar.Groups.Add("Group 2").AddItem("Item 2") oExplorerBar.EndUpdate() |
24 |
How do I specify the way the control highlight the items in the group
Dim oExplorerBar as P Dim var_Group as P oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.BeginUpdate() oExplorerBar.HighlightItemType = 0 var_Group = oExplorerBar.Groups.Add("Group 1") var_Group.AddItem("Item 1") var_Group.Expanded = .t. oExplorerBar.Groups.Add("Group 2").AddItem("Item 2") oExplorerBar.EndUpdate() |
23 |
Is there any function to avoid painting the control while adding multiple items and groups
Dim oExplorerBar as P Dim var_Group as P oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.BeginUpdate() var_Group = oExplorerBar.Groups.Add("Group 1") var_Group.AddItem("Item 1") var_Group.Expanded = .t. oExplorerBar.Groups.Add("Group 2").AddItem("Item 2") oExplorerBar.EndUpdate() |
22 |
How do I decrease the delay to scroll a group
Dim oExplorerBar as P Dim var_Group as P Dim var_Group1 as P oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.DelayScroll = 0 var_Group = oExplorerBar.Groups.Add("Group 1") var_Group.AddItem("Item 1") var_Group.Expanded = .t. var_Group1 = oExplorerBar.Groups.Add("Group 2") var_Group1.AddItem("Item 2") var_Group1.Expanded = .t. |
21 |
How do I display icons
Dim oExplorerBar as P Dim var_Group as local oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.SmallIcons = .t. oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=") ' oExplorerBar.Groups.Add("Group 1").Image = 1 var_Group = oExplorerBar.Groups.Add("Group 1") oExplorerBar.TemplateDef = "dim var_Group" oExplorerBar.TemplateDef = var_Group oExplorerBar.Template = "var_Group.Image = 1" |
20 |
How do I display 32x32 icons
Dim oExplorerBar as P Dim var_Group as local oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.SmallIcons = .f. oExplorerBar.GroupHeight = 36 oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=") ' oExplorerBar.Groups.Add("Group 1").Image = 1 var_Group = oExplorerBar.Groups.Add("Group 1") oExplorerBar.TemplateDef = "dim var_Group" oExplorerBar.TemplateDef = var_Group oExplorerBar.Template = "var_Group.Image = 1" |
19 |
How do I specify the height of the groups
Dim oExplorerBar as P oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.GroupHeight = 40 oExplorerBar.Groups.Add("Group 1") oExplorerBar.Groups.Add("Group 2") |
18 |
How do I change the visual appearance of the groups
Dim oExplorerBar as P oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.GroupAppearance = 1 oExplorerBar.Groups.Add("Group 1") oExplorerBar.Groups.Add("Group 2") |
17 |
How do I change the visual appearance of the groups, using your EBN files
Dim oExplorerBar as P oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") oExplorerBar.BackColorGroup = 16777216 oExplorerBar.Groups.Add("Group 1") oExplorerBar.Groups.Add("Group 2") |
16 |
How do I change the background color for the groups
Dim oExplorerBar as P oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.BackColorGroup = 255 oExplorerBar.BackColorGroup2 = 255 oExplorerBar.Groups.Add("Group 1") |
15 |
How do I change the background color for the groups
Dim oExplorerBar as P oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.BackColorGroup = 255 oExplorerBar.Groups.Add("Group 1") |
14 |
How do I change the control's foreground color
Dim oExplorerBar as P Dim var_Group as P oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.ForeColor = 16711680 oExplorerBar.ForeColorGroup = 255 var_Group = oExplorerBar.Groups.Add("Group 1") var_Group.AddItem("Item 1") var_Group.Expanded = .t. oExplorerBar.Groups.Add("Group 2") |
13 |
How can I change the control's font
Dim oExplorerBar as P oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.Font.Name = "Tahoma" oExplorerBar.Groups.Add("Group 1") |
12 |
How do I change the control's foreground color
Dim oExplorerBar as P Dim var_Group as P oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.ForeColor = 255 var_Group = oExplorerBar.Groups.Add("Group 1") var_Group.AddItem("Item 1") var_Group.Expanded = .t. |
11 |
How do I change the control's background color
Dim oExplorerBar as P oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.BackColor = 13158600 |
10 |
How do I change the control's border, using your EBN files
Dim oExplorerBar as P oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") oExplorerBar.Appearance = 16777216 '1000000 + |
9 |
How do I remove the control's border
Dim oExplorerBar as P oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.Appearance = 0 |
8 |
How do I put a picture on the center of the control
Dim oExplorerBar as P oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.Picture = oExplorerBar.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)") oExplorerBar.PictureDisplay = 17 |
7 |
How do I resize/stretch a picture on the control's background
Dim oExplorerBar as P oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.Picture = oExplorerBar.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)") oExplorerBar.PictureDisplay = 49 |
6 |
How do I put a picture on the control's center right bottom side
Dim oExplorerBar as P oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.Picture = oExplorerBar.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)") oExplorerBar.PictureDisplay = 34 |
5 |
How do I put a picture on the control's center left bottom side
Dim oExplorerBar as P oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.Picture = oExplorerBar.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)") oExplorerBar.PictureDisplay = 32 |
4 |
How do I put a picture on the control's center top side
Dim oExplorerBar as P oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.Picture = oExplorerBar.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)") oExplorerBar.PictureDisplay = 1 |
3 |
How do I put a picture on the control's right top corner
Dim oExplorerBar as P oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.Picture = oExplorerBar.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)") oExplorerBar.PictureDisplay = 2 |
2 |
How do I put a picture on the control's left top corner
Dim oExplorerBar as P oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.Picture = oExplorerBar.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)") oExplorerBar.PictureDisplay = 0 |
1 |
How do I put a picture on the control's background
Dim oExplorerBar as P oExplorerBar = topparent:CONTROL_ACTIVEX1.activex oExplorerBar.Picture = oExplorerBar.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)") |